home *** CD-ROM | disk | FTP | other *** search
- /*
- ** This ARexx program gives the images an embossed look.
- ** Converts <length> images to an embossed look starting with file
- ** source.<start>. Filenames are in the form source.xxx and dest.xxx.
- */
-
- PARSE ARG source dest start length
-
- say 'START'
- say source dest start length
-
- OPTIONS RESULTS
-
- ADDRESS "ADPro"
-
- frame=start
- do length
- frame=RIGHT(frame,3,'0')
- framestr=source||frame'.iff'
- Say 'Loading Frame #'frame 'from 'framestr
- LOAD framestr
- OPERATOR 'COLOR_TO_GRAY'
- OPERATOR 'LINE_ART'
- OPERATOR 'NEGATIVE'
- SAVE 'RAM:TEMP' RAW
- OPERATOR 'NEGATIVE'
- LOAD 'RAM:TEMP' 2 2 50
- EXECUTE
- framestr=dest||frame'.iff'
- SAY 'Saving Frame #'frame 'to 'framestr
- SAVE framestr IMAGE
-
- frame=frame+1
- end
-